home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / CW MacMindy 1.4 / Examples / Toolbox / Simple.r < prev    next >
Encoding:
Text File  |  1995-05-08  |  387 b   |  30 lines  |  [TEXT/CWIE]

  1. /*
  2.     Simple.r
  3.   */
  4.  
  5. #include <Types.r>
  6.  
  7. #define eConsoleApp 1
  8. #define eToolboxApp 2
  9.  
  10. type 'MCFG' {
  11.                 /* steve says, add a version number. */
  12.     integer;    /* type of application. */
  13. };
  14.  
  15. #if 1
  16. resource 'MCFG' (128, "Mindy Configuration") {
  17.     eToolboxApp
  18. };
  19. #endif
  20.  
  21. type 'OBJS' as 'STR#';
  22.  
  23. resource 'OBJS' (128, "Mindy Objects") {
  24.     {
  25.         "SimpleLib.dbc",
  26.         "Toolbox.dbc",
  27.         "Simple.dbc",
  28.     };
  29. };
  30.